home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / comm / misc / TC_Miami.lha / rexx / LaunchTC.mrx < prev    next >
Encoding:
Text File  |  1998-02-03  |  360 b   |  19 lines

  1. /*
  2. **  Launch the TimeConnect program...
  3. **  DONT FORGET TO ALTER THE work:internet/tc/tc PATH ACCORDING TO YOUR SETUP!
  4. **
  5. */
  6. options results
  7.  
  8. IF (SHOW('P',TIMECONNECT.1) =0) then
  9. DO
  10.  address command 'run >nil: work:internet/tc/tc'
  11.  address command 'c:wait 5'
  12.  address 'TIMECONNECT.1'
  13.  'iconify TRUE'
  14. END
  15. ELSE DO
  16.   address 'TIMECONNECT.1'
  17.   'iconify TRUE'
  18. END
  19.